f6cc5be1343b5f204fc24cabe535f31c2bbc2d4e,src/main/java/com/contentful/java/cma/ModuleContentTypes.java,ModuleContentTypes,fetchOne,#String#String#,121

Before Change


  public CMAContentType fetchOne(String spaceId, String contentTypeId) {
    assertNotNull(spaceId, "spaceId");
    assertNotNull(contentTypeId, "contentTypeId");
    return service.fetchOne(spaceId, contentTypeId);
  }

  /**

After Change


  public CMAContentType fetchOne(String spaceId, String contentTypeId) {
    assertNotNull(spaceId, "spaceId");
    assertNotNull(contentTypeId, "contentTypeId");
    return service.fetchOne(spaceId, contentTypeId).toBlocking().first();
  }

  /**